Full-Stack

Welcome Portfolio Projects Contact
↑ Go Back ↑

VNC server

VNC server

Start VNC server

vncserver -geometry 1838x1074

Note: If you start the vncserver multiple times, multiple displays are created. The first display will start at ":1", the second at ":2", etc.

Stop VNC server

vncserver -kill :1

Note: :1 is the display number.

VNC configuration

Configuration file location

The vncserver configuration file is located in

~/.vnc/xstartup

Example content

#!/bin/sh

## Load X resources (if any)
if [ -e "$HOME/.Xresources" ]
then
xrdb "$HOME/.Xresources"
fi

setroot -solid black

#x-terminal-emulator -geometry 1280x1024+10+10 -ls -title "$VNCDESKTOP Desktop" & # Show only terminal
startfluxbox &
terminator --geometry=1800x1000 &